home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / bgft211.zip / BGFTUYPC.ASP < prev    next >
Text File  |  1991-05-02  |  1KB  |  33 lines

  1. ; BGFTUYPC.ASP: PCPLUS script for BGFT Ymodem Batch upload.
  2. ; Copyright 1990-1991 Dirac Systems.
  3. ; Support Package for Registered users of BGFT (TM).
  4. ; PCPLUS is a trademark of Datastorm Technologies Inc.
  5. ;
  6. ; MANUAL INSTALLATION: See BGFTDYPC.ASP
  7. ; All files marked for upload in file buffer will be uploaded.
  8. ;
  9. MESSAGE" "
  10. MESSAGE"    Copyright 1990-1991 Dirac Systems"
  11. MESSAGE"                                       \ /"
  12. MESSAGE"------------------------------------- - o -"
  13. MESSAGE"                                       / \"
  14. MESSAGE"BGFT Ymodem Batch Upload External Protocol"
  15. MESSAGE" "
  16. ASSIGN S0 1                     ; USER DEFINED COMM PORT.
  17. ASSIGN S1 1200                  ; USER DEFINED BAUD RATE.
  18. ASSIGN S2 "BGFTOPT /Q"          ; Quiet mode (don't print out results).
  19. STRCAT S2 " /A"                 ; Acknowledge error, if any.
  20. STRCAT S2 " /R"                 ; Reconnect COMM port.
  21. STRCAT S2 S0
  22. STRCAT S2 " /B"                 ; Set baud rate.
  23. STRCAT S2 S1
  24. STRCAT S2 " /~"                 ; Set protocol.
  25. STRCAT S2 "3"                   ; USER DEFINED PROTOCOL (Ymodem Batch Upload).
  26. STRCAT S2 " /S"                 ; Start file(s) transfer.
  27. DOS S2                          ; Run BGFTOPT.EXE with appropriate command.
  28. IF FAILURE
  29.         MESSAGE "COMMAND.COM NOT FOUND"
  30.         EXIT                    ; End script and go to terminal mode.
  31. ENDIF
  32. BYE                             ; Exit PCPLUS without hanging up.
  33.